projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5d856da
)
* indent.c (Fvertical_motion): Mark locals as initialized.
author
Paul Eggert
<eggert@cs.ucla.edu>
Thu, 14 Jul 2011 21:35:23 +0000
(14:35 -0700)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Thu, 14 Jul 2011 21:35:23 +0000
(14:35 -0700)
src/ChangeLog
patch
|
blob
|
history
src/indent.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index 960ab3d07756fc6323b529ae36909af003842b2e..3cdb3610dd0ffd42f3a41268fa5122bff060c267 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,5
+1,6
@@
2011-07-14 Paul Eggert <eggert@cs.ucla.edu>
+ * indent.c (Fvertical_motion): Mark locals as initialized.
* xdisp.c (reseat_to_string): Fix pointer signedness issue.
2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
diff --git
a/src/indent.c
b/src/indent.c
index c36b83daa02796c037d4ddf8333350a724ee9bb4..aaeaaf591ef3b307ffba70067a357d1910564b4c 100644
(file)
--- a/
src/indent.c
+++ b/
src/indent.c
@@
-1985,7
+1985,7
@@
whether or not it is currently displayed in some window. */)
struct text_pos pt;
struct window *w;
Lisp_Object old_buffer;
- EMACS_INT old_charpos
, old_bytepos
;
+ EMACS_INT old_charpos
IF_LINT (= 0), old_bytepos IF_LINT (= 0)
;
struct gcpro gcpro1, gcpro2, gcpro3;
Lisp_Object lcols = Qnil;
double cols IF_LINT (= 0);